Login     Sign up
How to remove captcha
John D (@johnd)
Join date: Oct 29th 2010
Community posts: 132
View Profile
Send Message

I looked at a few threads but the info on them is old and the code must have been changed.

Im using 4.1 and really want to remove captcha, so many people told me they didnt signup because of it.

Anyone know what has to be removed?

Thanks!

161 months ago
sujay sreedhar (@webkoot)
Join date: Nov 11th 2010
Community posts: 98
View Profile
Send Message

its so dangerous removin that

go to function signup
find [code]
global $db, $client, $uhome, $config, $captcha;[/code]
remove [code] , $captcha[/code]

remove
[code]

$resp = recaptcha_check_answer ($captcha['privatekey'],

                                        $_SERVER["REMOTE_ADDR"],

                                        $_POST["recaptcha_challenge_field"],

                                        $_POST["recaptcha_response_field"]);

        if (!$resp->is_valid) {

                $captchaerror = $resp->error;

                $errors[] = t('Wrong Verification code');

        }

[/code]

then go to last of signup function

remove code
[code]

'.$iid_field.'

        <tr class="row1">

        <td>'.t('Image verification').'</td><td>

        '.recaptcha_get_html($captcha['publickey'],$captchaerror).'

        </td>

        </tr> [/code]
161 months ago
John D (@johnd)
Join date: Oct 29th 2010
Community posts: 132
View Profile
Send Message

Thanks very much :)

Yeah I do want something to stop bots but at the same itme, Id rather spend time removing spammers than legit users not registering..I know myself I have had to refresh captcha a lot of times just to be able to read it..a lot of people wouldnt even know how to refresh it so I think we are just turning members away

161 months ago
sujay sreedhar (@webkoot)
Join date: Nov 11th 2010
Community posts: 98
View Profile
Send Message

i have captcha on my site even then i deleted 15 or so spam accounts
its not recomented!

161 months ago